home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Language/OS - Multiplatform Resource Library
/
LANGUAGE OS.iso
/
et
/
et-2_2.lha
/
et2.2
/
src
/
Alert_e.h
< prev
next >
Wrap
C/C++ Source or Header
|
1990-09-26
|
454b
|
17 lines
#ifndef Alert_e_First
#define Alert_e_First
enum AlertType {
eAlertNote, // OK-Button
eAlertCaution, // Yes, Cancel and No-Button
eAlertStop, // Yes, Cancel and No-Button
eAlertMessage, // OK-Button, no image
eAlertSun, // OK-Button, Sun-Logo
eAlertError // image only
};
extern int ShowAlert(AlertType at, char* fmt, ...);
extern bool TestInterrupt(char *what);
#endif Alert_e_First